home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
examples.arc
/
EXAMPL08.PRO
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Prolog Source
|
1986-10-07
|
210 b
|
12 lines
/* Program 8 */
/*
Goals to enter are on page 37 of the manual.
*/
predicates
isletter(char)
clauses
isletter(Ch) if Ch <= 'z' and 'a' <= Ch.
isletter(Ch) if Ch <= 'Z' and 'A' <= Ch.